Forum replies created
Hi,
You are welcome!
Regards,
Denzel
Hi,
Sorry, evolve:Tabs widget does not support this feature. It only supports popular posts, recent posts and comments.
Sorry, we do not support custom coding.
Thanks!
Denzel
Hi,
Please try the following
.entry-title {
color: #c62020 !important;
}
Screenshot http://prntscr.com/7jsyfs
Thanks!
Denzel
You are welcome!
Hi,
Set up your revolution slider in your SLIDER OPTIONS. http://prntscr.com/7jlf0u
Then enter your content boxes shortcode in WordPress Editor. http://prntscr.com/7jleyl
You will get your revolution slider on top of your content boxes. http://prntscr.com/7jldtg
I think these are already very clear and simple instructions. Please kindly follow them.
The following is a set of content boxes with the Learn More button shortcode. You will only need to change the gradient_colors for each button. You the following and edit them for your own use.
[content_boxes layout="icon-on-top" iconcolor="#ffffff" circlecolor="#627e96" circlebordercolor="#627e96" backgroundcolor=""]
[content_box title="Flexible" icon="fa-wrench" image="" link="/#" linktarget="" linktext="" animation_type="fade" animation_direction="up" animation_speed="1"]Lorem ipsum dolor sit amet, consectetur adipiscing elit dolor pellentesque nibh.
Learn More
[/content_box]
[content_box title="Responsive" icon="fa-tablet" image="" link="/#" linktarget="" linktext="" animation_type="fade" animation_direction="up" animation_speed="1"]Donec sit amet neque accumsan turpis tempus viverra consectetur posuere.
Learn More
[/content_box]
[content_box last="yes" title="Unlimited" icon="fa-magic" image="" link="/#" linktarget="" linktext="" animation_type="fade" animation_direction="up" animation_speed="1"]Nam condimentum nec mi aliquam accumsan phasellus nulla lorem gravida.
Learn More
[/content_box]
[/content_boxes]
As for your background color, you need to clear your web browser cache.
Thanks!
Denzel
Hi,
Please use the following in Theme Options -> Custom CSS
.sb_toggle {
padding:15px 30px; /**adjust the number 30px to widen the width of the tab**/
}
.sb_toggle:after {
font-size: 14px;
font-family:arial !important;
content: 'Open' !important; /**You can change this text**/
-webkit-font-smoothing: antialiased;
display: block;
height: 40px;
position: absolute;
left: 15px;
top: 3px;
color: #FFFFFF;
}
.sb_toggle.open:after {
-webkit-font-smoothing: antialiased;
content: "Close" !important; /**You can change this text**/
}
The above example will change the chevron to the Words “Open” and “Close”. See the code comments for additional instruction.
These are screenshots of the above example http://prntscr.com/7jla7j
http://prntscr.com/7jla7w
Thanks!
Denzel
Hi,
Please use the following in Custom CSS.
.category .breadcrumbs {
display: none !important;
}
Thanks!
Denzel
Hi,
You can visit the WordPress plugins forum to search for a suitable mp3 sidebar widget.
https://wordpress.org/plugins/search.php?q=mp3+widget
Thanks!
Denzel
Hi,
It is in Theme Options -> Typography -> Blog Title font
Thanks!
Denzel
Hi,
Don’t remove any of your previous custom css codes.
You can use media queries http://stephen.io/mediaqueries/
For example in iPhone 6 portrait view. The following code will make your content fill up the width, instead of 75%.
@media only screen
and (min-device-width : 375px)
and (max-device-width : 667px)
and (orientation : portrait) {
/* STYLES GO HERE */
#primary {
width: 100%;
}
}
There are many possibilities, Please kindly try them out yourself.
Thanks!
Denzel